home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / FALSE.HDR < prev    next >
Text File  |  1994-04-25  |  751b  |  36 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _False() --> lFALSE
  8.  
  9. PARAMETERS:
  10.  
  11. None
  12.  
  13. SHORT:
  14.  
  15. Return FALSE.
  16.  
  17. DESCRIPTION:
  18.  
  19. _False() simply returns FALSE.  It can be useful in embedding a logical
  20. value in inline assignments where a statement cannot be used, or to return a
  21. value where a default value may be needed.
  22.  
  23. NOTE:
  24.  
  25.  
  26.  
  27. EXAMPLE:
  28.  
  29. lDoFunc = iif(IS_DEFINED_FUNCTION1, Function1(), _False() )
  30.  
  31. if lDoFunc
  32.     ? 'We did Function1() already! Are we bored?'
  33. endif
  34.  
  35. ******************************************************************************/
  36.